home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Programming / RJTextEd.exe / {userappdata} / RJ TextEd / Syntax / Hla.ini < prev    next >
Encoding:
INI File  |  2008-06-04  |  803 b   |  45 lines

  1. [MultiHighlight]
  2. Syntax=
  3. File=
  4.  
  5. [Comment]
  6. 1=*************************************************************
  7. 2=<b>Syntax: HLA (High Level Assembler)</b>
  8. 3=<b>Author: Rickard Johansson</b>
  9. 4=<b>Version: 1.0</b>
  10. 5=<b>Date: 2006-04-02</b>
  11. 6=
  12. 7=<b>Recommended colors:</b>
  13. 8=Settings file included.
  14. 9=*************************************************************
  15.  
  16. [Sample]
  17. 1=program SomeCode;
  18. 2=#include("stdlib.bhf")
  19. 3=
  20. 4=var
  21. 5=i32:     int32;
  22. 6=ColCnt:  int8;
  23. 7=
  24. 8=begin SomeCode;
  25. 9=
  26. 10=mov(96, i32);
  27. 11=fstp( (type Variant [esi - @size( Variant )]).r );
  28. 12=mov( Real_c, al );
  29. 13=
  30. 14=while(i32 > 0) do
  31. 15=if(ColCnt = 8) then
  32. 16=stdout.newln();
  33. 17=mov(0, ColCnt);
  34. 18=endif;
  35. 19=...
  36. 20=add)1, ColCnt);
  37. 21=endwhile;
  38. 22=
  39. 23=stdout.put(nl);
  40. 24=
  41. 25=end SomeCode;
  42. 26=
  43. 27=
  44.  
  45.